home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 24 / CU Amiga Magazine's Super CD-ROM 24 (1998)(EMAP Images)(GB)(Track 1 of 2)[!][issue 1998-07].iso / CUCD / Programming / crcPPC / smakefile < prev    next >
Encoding:
Makefile  |  1998-03-11  |  483 b   |  26 lines

  1. all: crc2.elf crcfast.elf crctab.elf
  2.  
  3. crc2.elf: crc2.o
  4.  
  5.          ppc-amigaos-ld -r LIB:c_ppc.o crc2.o LIB:scppc.a lib:end.o -o crc2.elf
  6.  
  7. crc2.o: crc2.c
  8.  
  9.         SCPPC crc2.c
  10.  
  11. crctab.elf: crctab.o
  12.  
  13.          ppc-amigaos-ld -r LIB:c_ppc.o crctab.o LIB:scppc.a lib:end.o -o crctab.elf
  14.  
  15. crctab.o: crctab.c
  16.  
  17.         SCPPC crctab.c
  18.  
  19. crcfast.elf: crcfast.o
  20.  
  21.          ppc-amigaos-ld -r LIB:c_ppc.o crcfast.o LIB:scppc.a lib:end.o -o crcfast.elf
  22.  
  23. crcfast.o: crcfast.c
  24.  
  25.         SCPPC crcfast.c
  26.